import { useParams } from 'common'
import { LogsPreviewer } from '@/components/interfaces/Settings/Logs/LogsPreviewer'
import DefaultLayout from '@/components/layouts/DefaultLayout'
import LogsLayout from '@/components/layouts/LogsLayout/LogsLayout'
import type { NextPageWithLayout } from '@/types'
export const LogPage: NextPageWithLayout = () => {
const { ref } = useParams()
return
}
LogPage.getLayout = (page) => (
{page}
)
export default LogPage